home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
shftstrt.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
1KB
|
26 lines
/* RCSVER $Id: shftstrt.sql,v 1.2 1999-03-07 23:27:47-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
*
* Name: shftstrt.sql
* Date: 02/23/1999
* memo: Randy Wood
* Description: Create the shftstrt table. shftstrt contains information
* from the start shift farebox record.
* Changes:
************************************************************************* */
CREATE TABLE shftstrt
(
det_seq_num NUMBER(38) /* pointer to mstrrec record */
CONSTRAINT ref1_shftstrt REFERENCES mstrrec(det_seq_num),
farebox_glid NUMBER(38), /* Farebox ID from global_id */
conv_date DATE, /* Date for this record */
shift_seq NUMBER(38), /* Shift sequence number */
user_id NUMBER(38), /* ID of operator */
route_id NUMBER(38), /* Route in effect */
run_id NUMBER(38), /* Run in effect */
trip_id NUMBER(38), /* Trip in effect */
fareset_id NUMBER(38), /* Fareset being used */
CONSTRAINT pk_shftstrt PRIMARY KEY (det_seq_num)
);